diff --git a/.gitignore b/.gitignore index 546fda98..f6e05a2c 100644 --- a/.gitignore +++ b/.gitignore @@ -161,3 +161,4 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ tmp/ +*/_version.py \ No newline at end of file diff --git a/mlipx/__init__.pyi b/mlipx/__init__.pyi index 1dd19e61..0627268f 100644 --- a/mlipx/__init__.pyi +++ b/mlipx/__init__.pyi @@ -15,6 +15,7 @@ from .nodes.invariances import ( TranslationalInvariance, ) from .nodes.io import LoadDataFile +from .nodes.metadynamics_analysis import MetadynamicsAnalysis from .nodes.modifier import TemperatureRampModifier from .nodes.molecular_dynamics import LangevinConfig, MolecularDynamics from .nodes.mp_api import MPRester @@ -66,6 +67,7 @@ __all__ = [ "BuildASEslab", "RelaxAdsorptionConfigs", "OrcaSinglePoint", + "MetadynamicsAnalysis", "spec", "__version__", ] diff --git a/mlipx/nodes/metadynamics_analysis.py b/mlipx/nodes/metadynamics_analysis.py new file mode 100644 index 00000000..c9024468 --- /dev/null +++ b/mlipx/nodes/metadynamics_analysis.py @@ -0,0 +1,227 @@ +import pathlib + +import numpy as np +import pandas as pd +import plotly.graph_objects as go +import zntrack + + +class MetadynamicsAnalysis(zntrack.Node): + """Analyze metadynamics simulation results. + + Reads COLVAR and HILLS files from an ASEMD metadynamics simulation + and produces collective variable time series and free energy surface plots. + + Parameters + ---------- + md : zntrack.Node + The MolecularDynamics node containing the metadynamics simulation. + Must have been run with a hillclimber MetaDynamicsModel. + + Attributes + ---------- + cv_data : pd.DataFrame + Time series of collective variables (phi, psi angles). + plots_dir : pathlib.Path + Directory containing PNG plot outputs. + """ + + md: zntrack.Node = zntrack.deps() + + cv_data: pd.DataFrame = zntrack.plots(x="time", y=["phi", "psi"]) + plots_dir: pathlib.Path = zntrack.outs_path(zntrack.nwd / "plots") + + def run(self): + import hillclimber as hc + + # Access files from MD node's working directory + md_nwd = pathlib.Path(self.md.nwd) + colvar_file = md_nwd / "COLVAR" + hills_file = md_nwd / "HILLS" + + # Read CV time series using hillclimber + cv_dict = hc.read_colvar(str(colvar_file)) + self.cv_data = pd.DataFrame(cv_dict) + + # Compute FES using hillclimber's sum_hills + fes_file = pathlib.Path(self.nwd) / "fes.dat" + hc.sum_hills( + hills_file=str(hills_file), + bin=[100, 100], + min_bounds=[-np.pi, -np.pi], + max_bounds=[np.pi, np.pi], + outfile=str(fes_file), + ) + + # Read FES data (format: phi, psi, free_energy, der_phi, der_psi) + fes_raw = np.loadtxt(fes_file, comments="#") + fes_data = pd.DataFrame(fes_raw[:, :3], columns=["phi", "psi", "free_energy"]) + + # Create plots directory and save PNG plots + self.plots_dir.mkdir(parents=True, exist_ok=True) + self._save_plots(fes_data) + + def _save_plots(self, fes_data: pd.DataFrame) -> None: + """Generate and save PNG plots.""" + import matplotlib.pyplot as plt + + # CV time series plot + fig, ax = plt.subplots(figsize=(10, 6)) + ax.plot(self.cv_data["time"], self.cv_data["phi"], label="φ (phi)", linewidth=1) + ax.plot(self.cv_data["time"], self.cv_data["psi"], label="ψ (psi)", linewidth=1) + ax.set_xlabel("Time (fs)") + ax.set_ylabel("Angle (rad)") + ax.set_title("Collective Variables vs Time") + ax.legend() + ax.grid(True, alpha=0.3) + fig.savefig(self.plots_dir / "cv_time_series.png", dpi=150, bbox_inches="tight") + plt.close(fig) + + # Free energy surface (2D heatmap) + pivot = fes_data.pivot_table( + index="psi", columns="phi", values="free_energy", aggfunc="mean" + ) + + fig, ax = plt.subplots(figsize=(8, 8)) + im = ax.imshow( + pivot.values, + extent=[-np.pi, np.pi, -np.pi, np.pi], + origin="lower", + aspect="equal", + cmap="viridis", + ) + ax.set_xlabel("φ (rad)") + ax.set_ylabel("ψ (rad)") + ax.set_title("Free Energy Surface") + cbar = fig.colorbar(im, ax=ax) + cbar.set_label("Free Energy (eV)") + fig.savefig(self.plots_dir / "fes.png", dpi=150, bbox_inches="tight") + plt.close(fig) + + # Ramachandran-style scatter plot + fig, ax = plt.subplots(figsize=(8, 8)) + scatter = ax.scatter( + self.cv_data["phi"], + self.cv_data["psi"], + c=self.cv_data["time"], + cmap="viridis", + s=20, + alpha=0.7, + ) + ax.set_xlabel("φ (rad)") + ax.set_ylabel("ψ (rad)") + ax.set_title("Ramachandran Plot (φ vs ψ)") + ax.set_xlim(-np.pi, np.pi) + ax.set_ylim(-np.pi, np.pi) + ax.grid(True, alpha=0.3) + cbar = fig.colorbar(scatter, ax=ax) + cbar.set_label("Time (fs)") + fig.savefig(self.plots_dir / "ramachandran.png", dpi=150, bbox_inches="tight") + plt.close(fig) + + @property + def figures(self) -> dict[str, go.Figure]: + """Generate plots for CV time series and free energy surface.""" + figures = {} + + # Read FES data for plotting + fes_file = pathlib.Path(self.nwd) / "fes.dat" + fes_raw = np.loadtxt(fes_file, comments="#") + fes_data = pd.DataFrame(fes_raw[:, :3], columns=["phi", "psi", "free_energy"]) + + # CV time series plot + cv_fig = go.Figure() + cv_fig.add_trace( + go.Scatter( + x=self.cv_data["time"], + y=self.cv_data["phi"], + mode="lines", + name="φ (phi)", + line={"width": 0.5}, + ) + ) + cv_fig.add_trace( + go.Scatter( + x=self.cv_data["time"], + y=self.cv_data["psi"], + mode="lines", + name="ψ (psi)", + line={"width": 0.5}, + ) + ) + cv_fig.update_layout( + title="Collective Variables vs Time", + xaxis_title="Time (fs)", + yaxis_title="Angle (rad)", + plot_bgcolor="rgba(0, 0, 0, 0)", + paper_bgcolor="rgba(0, 0, 0, 0)", + ) + cv_fig.update_xaxes( + showgrid=True, + gridwidth=1, + gridcolor="rgba(120, 120, 120, 0.3)", + ) + cv_fig.update_yaxes( + showgrid=True, + gridwidth=1, + gridcolor="rgba(120, 120, 120, 0.3)", + ) + figures["cv-time-series"] = cv_fig + + # Free energy surface (2D heatmap) + if fes_data is not None and len(fes_data) > 0: + pivot = fes_data.pivot_table( + index="psi", columns="phi", values="free_energy", aggfunc="mean" + ) + + fes_fig = go.Figure( + data=go.Heatmap( + z=pivot.values, + x=pivot.columns, + y=pivot.index, + colorscale="Viridis", + colorbar={"title": "Free Energy (eV)"}, + ) + ) + fes_fig.update_layout( + title="Free Energy Surface", + xaxis_title="φ (rad)", + yaxis_title="ψ (rad)", + plot_bgcolor="rgba(0, 0, 0, 0)", + paper_bgcolor="rgba(0, 0, 0, 0)", + ) + figures["free-energy-surface"] = fes_fig + + # Ramachandran-style scatter plot of CV sampling + rama_fig = go.Figure() + rama_fig.add_trace( + go.Scattergl( + x=self.cv_data["phi"], + y=self.cv_data["psi"], + mode="markers", + marker={"size": 2, "opacity": 0.3, "color": self.cv_data["time"]}, + name="Sampling", + ) + ) + rama_fig.update_layout( + title="Ramachandran Plot (φ vs ψ)", + xaxis_title="φ (rad)", + yaxis_title="ψ (rad)", + xaxis={"range": [-np.pi, np.pi]}, + yaxis={"range": [-np.pi, np.pi]}, + plot_bgcolor="rgba(0, 0, 0, 0)", + paper_bgcolor="rgba(0, 0, 0, 0)", + ) + rama_fig.update_xaxes( + showgrid=True, + gridwidth=1, + gridcolor="rgba(120, 120, 120, 0.3)", + ) + rama_fig.update_yaxes( + showgrid=True, + gridwidth=1, + gridcolor="rgba(120, 120, 120, 0.3)", + ) + figures["ramachandran-plot"] = rama_fig + + return figures diff --git a/mlipx/nodes/molecular_dynamics.py b/mlipx/nodes/molecular_dynamics.py index bfccaabd..31d3ae78 100644 --- a/mlipx/nodes/molecular_dynamics.py +++ b/mlipx/nodes/molecular_dynamics.py @@ -76,14 +76,19 @@ class MolecularDynamics(zntrack.Node): plots: pd.DataFrame = zntrack.plots(y=["energy", "fmax"], autosave=True) frames_path: pathlib.Path = zntrack.outs_path(zntrack.nwd / "frames.xyz") + model_outs: pathlib.Path = zntrack.outs_path(zntrack.nwd / "model") def run(self): if self.observers is None: self.observers = [] if self.modifiers is None: self.modifiers = [] + self.model_outs.mkdir(parents=True, exist_ok=True) + # Create placeholder to ensure DVC tracks the directory even if calculator + # doesn't create files (following ipsuite pattern) + (self.model_outs / "outs.txt").write_text("") atoms = self.data[self.data_id] - atoms.calc = self.model.get_calculator() + atoms.calc = self.model.get_calculator(directory=self.model_outs) dyn = self.thermostat.get_molecular_dynamics(atoms) for obs in self.observers: obs.initialize(atoms) diff --git a/mlipx/nodes/smiles.py b/mlipx/nodes/smiles.py index 08fe9f52..6ef54386 100644 --- a/mlipx/nodes/smiles.py +++ b/mlipx/nodes/smiles.py @@ -66,7 +66,7 @@ class BuildBox(zntrack.Node): frames_path: pathlib.Path = zntrack.outs_path(zntrack.nwd / "frames.xyz") def run(self): - from rdkit2ase import pack + from molify import pack atoms = pack(data=self.data, counts=self.counts, density=self.density) aio.write(self.frames_path, atoms) diff --git a/mlipx/recipes/main.py b/mlipx/recipes/main.py index 8b26c783..6c0b371d 100644 --- a/mlipx/recipes/main.py +++ b/mlipx/recipes/main.py @@ -356,3 +356,26 @@ def adsorption( smiles=smiles, slab_config=slab_config, ) + + +@app.command() +def metadynamics( + initialize: bool = False, + repro: bool = False, + models: t.Annotated[str | None, typer.Option()] = None, + steps: t.Annotated[int, typer.Option()] = 2_000_000, +): + """Run alanine dipeptide metadynamics with phi/psi collective variables. + + This recipe sets up a well-tempered metadynamics simulation of alanine + dipeptide solvated in water, using phi and psi backbone torsion angles + as collective variables. Produces free energy surface and CV time series. + """ + if initialize: + initialize_directory() + if models is not None: + render_template(CWD / "models.py.jinja2", "models.py", models=models.split(",")) + template = jinja2.Template((CWD / "metadynamics.py.jinja2").read_text()) + with open("main.py", "w") as f: + f.write(template.render(n_steps=steps)) + repro_if_requested(repro) diff --git a/mlipx/recipes/metadynamics.py.jinja2 b/mlipx/recipes/metadynamics.py.jinja2 new file mode 100644 index 00000000..a7a79e4d --- /dev/null +++ b/mlipx/recipes/metadynamics.py.jinja2 @@ -0,0 +1,103 @@ +import hillclimber as hc +import zntrack +from models import MODELS + +import mlipx + +# Simulation parameters +TEMPERATURE = 300.0 # Kelvin +TIMESTEP = 0.5 # fs +N_STEPS = {{ n_steps }} # Number of MD steps + +project = zntrack.Project() + +# System preparation: alanine dipeptide solvated in water +with project.group("initialize"): + alanine_dipeptide = mlipx.Smiles2Conformers( + smiles="CC(=O)NC(C)C(=O)NC", + num_confs=1, + ) + water = mlipx.Smiles2Conformers(smiles="O", num_confs=100) + box = mlipx.BuildBox( + data=[alanine_dipeptide.frames, water.frames], + counts=[1, 64], + density=1000, + ) + +# Run metadynamics for each model +for model_name, model in MODELS.items(): + with project.group(model_name): + # Geometry optimization + geoopt = mlipx.StructureOptimization( + data=box.frames, + model=model, + fmax=0.05, + ) + + # Collective variables: phi and psi backbone torsions + phi_selector = hc.SMARTSSelector(pattern="[C:1](=O)[N:2][C:3][C:4](=O)") + psi_selector = hc.SMARTSSelector(pattern="C(=O)[N:1][C:2][C:3](=O)[N:4]") + + phi_cv = hc.TorsionCV(atoms=phi_selector, prefix="phi") + psi_cv = hc.TorsionCV(atoms=psi_selector, prefix="psi") + + # Metadynamics biases + phi_bias = hc.MetadBias( + cv=phi_cv, + sigma=0.35, + grid_min="-pi", + grid_max="pi", + ) + psi_bias = hc.MetadBias( + cv=psi_cv, + sigma=0.35, + grid_min="-pi", + grid_max="pi", + ) + + # Metadynamics configuration + metad_config = hc.MetaDynamicsConfig( + height=0.1, # Gaussian height in eV + pace=500, # Deposit Gaussian every N steps + biasfactor=6, # Well-tempered factor + temp=TEMPERATURE, + file="HILLS", + ) + + # Print action for CV monitoring + print_action = hc.PrintAction( + cvs=[phi_cv, psi_cv], + stride=100, + file="COLVAR", + ) + + # Metadynamics model wrapping the MLIP + metad_model = hc.MetaDynamicsModel( + config=metad_config, + bias_cvs=[phi_bias, psi_bias], + actions=[print_action], + data=geoopt.frames, + data_idx=-1, + model=model, + ) + + # Thermostat configuration + thermostat = mlipx.LangevinConfig( + timestep=TIMESTEP, + temperature=TEMPERATURE, + friction=0.01, + ) + + # MD simulation + md = mlipx.MolecularDynamics( + data=geoopt.frames, + data_id=-1, + model=metad_model, + thermostat=thermostat, + steps=N_STEPS, + ) + + # Analysis: CV time series and free energy surface + analysis = mlipx.MetadynamicsAnalysis(md=md) + +project.build() diff --git a/pyproject.toml b/pyproject.toml index c22b269f..133b686f 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,8 @@ dependencies = [ "dvc-s3>=3.2.0", "mpcontribs-client>=5.10.2", "pydantic>=2.10.6", + "hillclimber>=0.1.8", + "molify>=0.2.2", ] [dependency-groups] diff --git a/uv.lock b/uv.lock index cc4e5261..ee1e3dcf 100644 --- a/uv.lock +++ b/uv.lock @@ -1,547 +1,387 @@ 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 == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -617,7 +457,6 @@ 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" }, @@ -626,23 +465,6 @@ dependencies = [ ] 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" }, @@ -1013,10 +835,6 @@ wheels = [ { 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" }, @@ -1178,563 +996,10 @@ 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" } -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" }, -] - [[package]] name = "cachetools" version = "6.0.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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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" } 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" }, @@ -1777,18 +1042,6 @@ dependencies = [ ] 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" }, @@ -1840,19 +1093,6 @@ 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" }, @@ -1912,13 +1152,6 @@ dependencies = [ ] 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" }, @@ -1940,7 +1173,7 @@ name = "click" version = "8.2.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" } wheels = [ @@ -2042,16 +1275,6 @@ dependencies = [ ] 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" }, @@ -2092,9 +1315,6 @@ wheels = [ { 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" }, @@ -2106,16 +1326,6 @@ 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" }, @@ -2174,7 +1384,7 @@ name = "cryptography" version = "45.0.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, + { 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/fe/c8/a2a376a8711c1e11708b9c9972e0c3223f5fc682552c82d8db844393d6ce/cryptography-45.0.4.tar.gz", hash = "sha256:7405ade85c83c37682c8fe65554759800a4a8c54b2d96e0f8ad114d31b808d57", size = 744890, upload-time = "2025-06-10T00:03:51.297Z" } wheels = [ @@ -2202,12 +1412,6 @@ wheels = [ { 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" }, @@ -2245,16 +1449,6 @@ 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" }, @@ -2294,10 +1488,6 @@ 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" }, @@ -2348,8 +1538,7 @@ 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 = "networkx", 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 = "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')" }, @@ -2358,10 +1547,6 @@ dependencies = [ { 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" }, @@ -2414,14 +1599,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" }, @@ -2475,12 +1652,6 @@ dependencies = [ ] 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" }, @@ -2499,11 +1670,6 @@ wheels = [ { 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" }, @@ -2539,8 +1705,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" }, @@ -2674,85 +1839,61 @@ 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 == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' 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" }, @@ -2772,389 +1913,277 @@ version = "0.5.6" 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 == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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')" }, @@ -3205,18 +2234,6 @@ 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" }, ] -[[package]] -name = "exceptiongroup" -version = "1.3.0" -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/0b/9f/a65090624ecf468cdca03533906e7c69ed7588582240cfe7cc9e770b50eb/exceptiongroup-1.3.0.tar.gz", hash = "sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88", size = 29749, upload-time = "2025-05-10T17:42:51.123Z" } -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" }, -] - [[package]] name = "executing" version = "2.2.0" @@ -3376,14 +2393,6 @@ 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" }, @@ -3426,23 +2435,6 @@ 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" }, @@ -3606,16 +2598,16 @@ wheels = [ [[package]] name = "google-auth" -version = "2.40.3" +version = "2.48.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cachetools", version = "5.5.2", source = { registry = "https://pypi.org/simple" } }, + { name = "cryptography" }, { 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/0c/41/242044323fbd746615884b1c16639749e73665b718209946ebad7ba8a813/google_auth-2.48.0.tar.gz", hash = "sha256:4f7e706b0cd3208a3d940a19a822c37a476ddba5450156c3e6624a71f7c841ce", size = 326522, upload-time = "2026-01-26T19:22:47.157Z" } 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/83/1d/d6466de3a5249d35e832a52834115ca9d1d0de6abc22065f049707516d47/google_auth-2.48.0-py3-none-any.whl", hash = "sha256:2e2a537873d449434252a9632c28bfc268b0adb1e53f9fb62afc5333a975903f", size = 236499, upload-time = "2026-01-26T19:22:45.099Z" }, ] [[package]] @@ -3654,12 +2646,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 +2663,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" }, ] @@ -3737,15 +2721,6 @@ version = "3.2.3" 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" }, @@ -3788,16 +2763,6 @@ 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" }, @@ -3870,11 +2835,6 @@ dependencies = [ ] 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" }, @@ -3907,6 +2867,52 @@ wheels = [ { 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" }, ] +[[package]] +name = "hillclimber" +version = "0.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ase" }, + { name = "metadynminer" }, + { name = "molify" }, + { name = "rdkit2ase" }, + { name = "seaborn" }, + { name = "zntrack" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5d/c3/a479b60a304d105b8894daffb41045fdb20016b425ba367ea612b4d24d06/hillclimber-0.1.8.tar.gz", hash = "sha256:795022caa8954149877bcb812a1ec14eb013c67a92abf0d318c2a603dc0b5f22", size = 4448957, upload-time = "2026-01-12T16:54:06.054Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2e/af/3dca83331e9fa0034f90254aeb76990b277d5dbdacd3d1c838b5e35589cd/hillclimber-0.1.8-cp311-cp311-macosx_15_0_arm64.whl", hash = "sha256:dfe6542f68f2a6ebf4d03f66be92a0d32e048ace8c7c366275f70b59b049443e", size = 7720159, upload-time = "2026-01-12T16:52:39.636Z" }, + { url = "https://files.pythonhosted.org/packages/ce/8d/af05189a54425eaaa79dd7af134c3f6efc659b8ae0fc463b178250e206dc/hillclimber-0.1.8-cp311-cp311-macosx_15_0_x86_64.whl", hash = "sha256:d3cbc1f07da62ff11e678f9617090525deefed7a19761743643289fec691a0b1", size = 8339330, upload-time = "2026-01-12T16:52:42.111Z" }, + { url = "https://files.pythonhosted.org/packages/55/4f/ab8aa411dad80b12e67dd36a4849a96abf46f512c74635290cfde29f12ec/hillclimber-0.1.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ce9d170b257dd0a265fc4d7dbb011d8e47ee6ea902bddbcf5622db19f39fc3b4", size = 23257961, upload-time = "2026-01-12T16:52:44.622Z" }, + { url = "https://files.pythonhosted.org/packages/92/40/0ae9de2c5155994bcf3f897a155d7461b589b0c5edfa26670d17c8e51881/hillclimber-0.1.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e59d3ce2aa79d771ab92346ef1aeede0114b58c393ea9d7b664cd64df1d05740", size = 23696257, upload-time = "2026-01-12T16:52:48.121Z" }, + { url = "https://files.pythonhosted.org/packages/08/79/0a7b593a6d4f035c594c25601042b5d13508963e188d8d0dac512672756b/hillclimber-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068ae4f7878597e75bd6a3706705803e1fdb9f77fbc7db7ece9102b29cb1c257", size = 23799973, upload-time = "2026-01-12T16:52:51.093Z" }, + { url = "https://files.pythonhosted.org/packages/22/2c/8d9cd2e95e3b7d9a16ebe0068fee237fe4297441d997d7c9356dbc63399e/hillclimber-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:af472413d352890baa5976d6a3635164401f3a23b03d2a04523fa32b3f15f7c0", size = 24175578, upload-time = "2026-01-12T16:52:54.786Z" }, + { url = "https://files.pythonhosted.org/packages/d9/8f/49506e0cddef3a6df0249a1667673ac1cea96d2dcff435e4aad9cccfc3f6/hillclimber-0.1.8-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:0aa6780d8c427b35fe7346162b41692a3612610f9d0236c78d9ca4ca5ed0b0ab", size = 8000000, upload-time = "2026-01-12T16:52:57.962Z" }, + { url = "https://files.pythonhosted.org/packages/94/c1/3eae353c242c9cf459bc35314a5fb84409f474e24cea1bdf5d36bc6a3875/hillclimber-0.1.8-cp312-cp312-macosx_15_0_x86_64.whl", hash = "sha256:4e3bb8482bf1eae90abdf830f2d145dc2eac09894a5a6410752f5890c66f89b2", size = 8645783, upload-time = "2026-01-12T16:53:00.677Z" }, + { url = "https://files.pythonhosted.org/packages/d2/49/7d09e0acdc31322fa50174e0bfd8cbf89966cb1e5914eb45aea09252107e/hillclimber-0.1.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9b38e9e979a0fbae873113f311573b5f517c4dbc22da1e36f36374c88a67384e", size = 24691762, upload-time = "2026-01-12T16:53:03.862Z" }, + { url = "https://files.pythonhosted.org/packages/b4/4a/1871ce08fdfbf38adbfb891d3e0a31e251db7e9775df64eb784ec0db1e33/hillclimber-0.1.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0d951af172dd6ef8a4ad392bdeb2749e58ef04d1f44166ef402caac64ac0526d", size = 25184485, upload-time = "2026-01-12T16:53:06.427Z" }, + { url = "https://files.pythonhosted.org/packages/74/9d/6b81d2ef9f7ad9ec87b97bd6550f81be82ee3c62cc280a627f8d6bdb2fac/hillclimber-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bbb4de6761d18af257357c6c931a7cb0f851e1e0767ca833cbb37b1aa55b600e", size = 25204942, upload-time = "2026-01-12T16:53:09.516Z" }, + { url = "https://files.pythonhosted.org/packages/d7/8e/4a24eda617f4239a5f54965d4cb716217fb64cbc6db7e4539e599f350c75/hillclimber-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a8162ea1619b167ea632f35703f1b5c26ed08e1d06fe94ff659c40012dca9e92", size = 25651022, upload-time = "2026-01-12T16:53:12.529Z" }, + { url = "https://files.pythonhosted.org/packages/92/c3/23586eee75f33633b961d8b344c454d54bd05d1240893db03f58a4f21bfa/hillclimber-0.1.8-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:823f285b440e261ef49c7bfcfadacdffb298f25a66fc9f25c17d6bc96be1b61b", size = 8278724, upload-time = "2026-01-12T16:53:15.017Z" }, + { url = "https://files.pythonhosted.org/packages/bf/67/762243640dbd38ee49ca5470547d951b1a3b0c1a1f5b149d709249ece3bc/hillclimber-0.1.8-cp313-cp313-macosx_15_0_x86_64.whl", hash = "sha256:5d900064de84f19bd1ed6ef1906eb3d17d26bfcd2faad34edf960add4c25002b", size = 8950670, upload-time = "2026-01-12T16:53:17.248Z" }, + { url = "https://files.pythonhosted.org/packages/b6/d1/fcce96ba7102bbf224b8525f417ecf5fa464e2b16bab23e2ca19e80f07f0/hillclimber-0.1.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f28e4b760190520d1891bd00fee3674fc6cc3ed5954fdc0ec10368d33302ec8f", size = 26124739, upload-time = "2026-01-12T16:53:19.424Z" }, + { url = "https://files.pythonhosted.org/packages/f9/90/6afcb198955f78cf8faffbf2840347aaf6f335df4df5b12b7aaf9a945b5b/hillclimber-0.1.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5d45a5ad9ac83875a38a05fcec0d6838ae0a84de50e69d00d02fb15235ce7654", size = 26660999, upload-time = "2026-01-12T16:53:22.452Z" }, + { url = "https://files.pythonhosted.org/packages/28/48/7106de211f379e920a332678b18a599946f3f3f2dbf200b249eae500ab8c/hillclimber-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b5836eadb8efc243569e18eefd1ebf6d9beb29a7f899605b32ca2c4f8cd0e0e5", size = 26610567, upload-time = "2026-01-12T16:53:25.645Z" }, + { url = "https://files.pythonhosted.org/packages/52/cd/a9b34fce40c481bc701e9841d4b97e7d4deead6553406638888ae59d58c4/hillclimber-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:24fed74d21dc5ea540bb761adf0b8ffad33fa1a114ae2bad531f8906c227ba03", size = 27115473, upload-time = "2026-01-12T16:53:28.523Z" }, + { url = "https://files.pythonhosted.org/packages/98/b7/cc371fb4d7c584585c88deebaa4f4a4008d90a1e4e64b5266842ee33e6f7/hillclimber-0.1.8-cp314-cp314-macosx_15_0_arm64.whl", hash = "sha256:f93c02539c5bc87874d16355d2c200902f851a6e8d112142b33cf29c1fc27658", size = 8559190, upload-time = "2026-01-12T16:53:30.747Z" }, + { url = "https://files.pythonhosted.org/packages/6d/b1/d05df51f9d4bec2380bd38b3f8915e96865271eb861aecc01c4ff4102093/hillclimber-0.1.8-cp314-cp314-macosx_15_0_x86_64.whl", hash = "sha256:ea3403e603a71628ffb09e8703f2e3945c2b4bd120e91e96331ca96a1cd7f830", size = 9256423, upload-time = "2026-01-12T16:53:32.967Z" }, + { url = "https://files.pythonhosted.org/packages/ef/96/7344b326be2e104386987262597266d643540d9585795442e96ae050f012/hillclimber-0.1.8-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f46080943d06f51c35f9a5de3e4860737609b36e2932105ee7e004da58686b85", size = 27554785, upload-time = "2026-01-12T16:53:35.355Z" }, + { url = "https://files.pythonhosted.org/packages/3a/3f/c73dc5a62de67623d12a522d8c7e74a97c98a2c95acf775385da63486db5/hillclimber-0.1.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e27695d185c3fbb69f7c563ba147a7230b0237618d99ca386d285a60b3c7b35", size = 28117545, upload-time = "2026-01-12T16:53:38.439Z" }, + { url = "https://files.pythonhosted.org/packages/70/aa/3ebc28fd5f7be00eed3145e2508bb104f0af6739ec3bf6952730bdc4bdab/hillclimber-0.1.8-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:8b6dc8c9b98b1663ee152856d790072c10d78b050aaf6db9d9c453f8f7bf1dac", size = 28015645, upload-time = "2026-01-12T16:53:41.003Z" }, + { url = "https://files.pythonhosted.org/packages/64/c7/b215b589666552752d5eb2d7588d8755b80386e3537fcb1b06cd8987fa72/hillclimber-0.1.8-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:00567fb1163af206aab1537d8a8799a1f00fce9bfcb968ccf773f712385b64d0", size = 28566813, upload-time = "2026-01-12T16:53:44.069Z" }, + { url = "https://files.pythonhosted.org/packages/cd/41/5111a8e3dba909f1241a6cc6bb83e7b1ec6e1baa2eba51b3ce17db81baf4/hillclimber-0.1.8-cp314-cp314t-macosx_15_0_arm64.whl", hash = "sha256:2da172106b51531cd5ba411aa5d1819f3c93d522556a55a56b5a487255e0dc74", size = 8871010, upload-time = "2026-01-12T16:53:48.834Z" }, + { url = "https://files.pythonhosted.org/packages/1d/22/91b0c72ade269262a75339f28ab5845c7c0cdae4bd2934436ff5cc8bca27/hillclimber-0.1.8-cp314-cp314t-macosx_15_0_x86_64.whl", hash = "sha256:d635f648c04c5197d5808d045746c980a47234aebbebc31704285028719421c7", size = 9591811, upload-time = "2026-01-12T16:53:51.394Z" }, + { url = "https://files.pythonhosted.org/packages/7b/3c/3057d30cff666fff17885e2f6b3f6e18bf5440d7cee2c8d9b79c46f3b01a/hillclimber-0.1.8-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0929aa4bcb191b67e21b8a451c61dea9c6206979de069b8e1d3a13ea2a010922", size = 29036568, upload-time = "2026-01-12T16:53:54.21Z" }, + { url = "https://files.pythonhosted.org/packages/fa/1b/8d0a08cf8402f4ede7884048d7bcb51ab8617ce56534110b8ffcabedd758/hillclimber-0.1.8-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7060d1eccaa2d355e34db24d4bef63c62ff3509ecf46d9eb64f7a6ff1f286890", size = 29588324, upload-time = "2026-01-12T16:53:56.97Z" }, + { url = "https://files.pythonhosted.org/packages/9d/f7/7d7fe3bb2536e89c6ed5858c12dfed5389a75324154c7bc21d5922c2b88e/hillclimber-0.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:03dec49e7ac4c9a905645a03fd5705245dc93770194b66454da2b6daf3f07d3d", size = 29457589, upload-time = "2026-01-12T16:53:59.881Z" }, + { url = "https://files.pythonhosted.org/packages/c2/aa/3315a326cb69c27d3192cbc318e7aea8e2f70add8f77b78ac4347dc49abe/hillclimber-0.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:edff33449898f984aac9e53a6247da458a0dc40bd23cb9b8f17eaee273213cd7", size = 30030514, upload-time = "2026-01-12T16:54:02.679Z" }, +] + [[package]] name = "huggingface-hub" version = "0.32.4" @@ -3914,7 +2920,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 == '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 = "packaging" }, { name = "pyyaml" }, { name = "requests" }, @@ -3959,11 +2965,25 @@ wheels = [ ] [[package]] -name = "imagesize" -version = "1.4.1" +name = "imageio" +version = "2.37.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a7/84/62473fb57d61e31fef6e36d64a179c8781605429fd927b5dd608c997be31/imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a", size = 1280026, upload-time = "2022-07-01T12:21:05.687Z" } -wheels = [ +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 = "pillow" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a3/6f/606be632e37bf8d05b253e8626c2291d74c691ddc7bcdf7d6aaf33b32f6a/imageio-2.37.2.tar.gz", hash = "sha256:0212ef2727ac9caa5ca4b2c75ae89454312f440a756fcfc8ef1993e718f50f8a", size = 389600, upload-time = "2025-11-04T14:29:39.898Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/fe/301e0936b79bcab4cacc7548bf2853fc28dced0a578bab1f7ef53c9aa75b/imageio-2.37.2-py3-none-any.whl", hash = "sha256:ad9adfb20335d718c03de457358ed69f141021a333c40a53e57273d8a5bd0b9b", size = 317646, upload-time = "2025-11-04T14:29:37.948Z" }, +] + +[[package]] +name = "imagesize" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/84/62473fb57d61e31fef6e36d64a179c8781605429fd927b5dd608c997be31/imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a", size = 1280026, upload-time = "2022-07-01T12:21:05.687Z" } +wheels = [ { url = "https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b", size = 8769, upload-time = "2022-07-01T12:21:02.467Z" }, ] @@ -3993,8 +3013,7 @@ 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" }, @@ -4010,588 +3029,22 @@ 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" }, ] -[[package]] -name = "ipython" -version = "8.37.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" } wheels = [ @@ -4603,7 +3056,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 = [ @@ -4616,8 +3069,7 @@ version = "8.1.7" 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" }, @@ -4712,8 +3164,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" }, @@ -4844,8 +3295,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" }, @@ -4900,21 +3350,6 @@ 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" }, @@ -4973,12 +3408,6 @@ wheels = [ { 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" }, ] [[package]] @@ -5059,9 +3488,9 @@ name = "lightning-utilities" version = "0.14.3" 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" } wheels = [ @@ -5074,11 +3503,6 @@ 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" }, @@ -5102,10 +3526,6 @@ 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" }, @@ -5118,8 +3538,6 @@ wheels = [ { 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" }, ] [[package]] @@ -5228,16 +3646,6 @@ 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" }, @@ -5333,12 +3741,6 @@ dependencies = [ ] 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" }, @@ -5363,9 +3765,6 @@ wheels = [ { 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" }, ] [[package]] @@ -5389,114 +3788,81 @@ 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.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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-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')" }, + { name = "ase", marker = "(extra == 'extra-5-mlipx-fairchem' 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-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') 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 = "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-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-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') 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 = "packaging", marker = "(extra == 'extra-5-mlipx-fairchem' 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-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') 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 = "scipy", marker = "(extra == 'extra-5-mlipx-fairchem' 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-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') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn')" }, ] 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" }, @@ -5515,311 +3881,219 @@ version = "1.1.1" 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 == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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')" }, @@ -5829,11 +4103,6 @@ dependencies = [ ] 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/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" }, @@ -5881,11 +4150,6 @@ dependencies = [ ] 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" }, @@ -5913,7 +4177,21 @@ wheels = [ ] [[package]] -name = "metatensor-core" +name = "metadynminer" +version = "0.9.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "imageio" }, + { 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 = "pandas" }, + { name = "pyvista" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/b1/9bfcc798d757242f0b460342fc7bd2c5922ee07b7d4cfcc9a1b2b8b68981/metadynminer-0.9.5.tar.gz", hash = "sha256:36be8f0e0623d239f940a4db78216f5cf214eb8a174a2559c7816e251e8355da", size = 46567, upload-time = "2026-01-27T15:54:27.247Z" } + +[[package]] +name = "metatensor-core" version = "0.1.14" source = { registry = "https://pypi.org/simple" } dependencies = [ @@ -6018,9 +4296,6 @@ wheels = [ name = "mistune" version = "3.1.3" 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" } 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" }, @@ -6035,10 +4310,6 @@ dependencies = [ ] 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" }, @@ -6056,7 +4327,9 @@ source = { editable = "." } dependencies = [ { name = "ase" }, { name = "dvc-s3" }, + { name = "hillclimber" }, { name = "lazy-loader" }, + { name = "molify" }, { name = "mp-api" }, { name = "mpcontribs-client" }, { name = "plotly" }, @@ -6129,11 +4402,13 @@ requires-dist = [ { 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" }, + { name = "hillclimber", specifier = ">=0.1.8" }, { name = "lazy-loader", specifier = ">=0.4" }, { name = "mace-torch", marker = "extra == 'mace'", specifier = ">=0.3.12" }, { name = "matgl", marker = "extra == 'matpes'", specifier = ">=1.2.7" }, { name = "matpes", marker = "extra == 'matpes'", specifier = ">=0.0.3" }, { name = "mattersim", marker = "extra == 'mattersim'", specifier = ">=1.1.2" }, + { name = "molify", specifier = ">=0.2.2" }, { name = "mp-api", specifier = ">=0.45.3" }, { name = "mpcontribs-client", specifier = ">=5.10.2" }, { name = "orb-models", marker = "extra == 'orb'", specifier = ">=0.5.0" }, @@ -6173,6 +4448,22 @@ docs = [ { name = "sphinxcontrib-mermaid", specifier = ">=1.0.0" }, ] +[[package]] +name = "molify" +version = "0.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ase" }, + { name = "matplotlib" }, + { name = "networkx" }, + { name = "packmol" }, + { name = "rdkit" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f2/da/828cbda120f66cef3d6092b9e58ec518874b2521d735d3449c44a847a9ed/molify-0.2.2.tar.gz", hash = "sha256:f217360810f17027e44df0e8825f79516e2fdf6c101b989b096765458d930904", size = 1324469, upload-time = "2025-12-03T08:39:48.527Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/a4/d58df28f79e70d177cbd5d349ddf2c793b5a70c248423670740db74aaec6/molify-0.2.2-py3-none-any.whl", hash = "sha256:956034cd9f4f563dfb4aabb55aedd9ab86d0750f93c26856fdca83e0f2956c39", size = 30381, upload-time = "2025-12-03T08:39:47.053Z" }, +] + [[package]] name = "mongomock" version = "4.3.0" @@ -6237,12 +4528,10 @@ 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')" }, @@ -6304,17 +4593,6 @@ version = "1.1.0" 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" }, @@ -6354,28 +4632,8 @@ wheels = [ 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" }, @@ -6385,733 +4643,180 @@ wheels = [ { 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" }, -] - -[[package]] -name = "mypy-extensions" -version = "1.1.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a2/6e/371856a3fb9d31ca8dac321cda606860fa4548858c0cc45d9d1d4ca2628b/mypy_extensions-1.1.0.tar.gz", hash = "sha256:52e68efc3284861e772bbcd66823fde5ae21fd2fdb51c62a211403730b916558", size = 6343, upload-time = "2025-04-22T14:54:24.164Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl", hash = "sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505", size = 4963, upload-time = "2025-04-22T14:54:22.983Z" }, -] - -[[package]] -name = "namex" -version = "0.1.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0c/c0/ee95b28f029c73f8d49d8f52edaed02a1d4a9acb8b69355737fdb1faa191/namex-0.1.0.tar.gz", hash = "sha256:117f03ccd302cc48e3f5c58a296838f6b89c83455ab8683a1e85f2a430aa4306", size = 6649, upload-time = "2025-05-26T23:17:38.918Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b2/bc/465daf1de06409cdd4532082806770ee0d8d7df434da79c76564d0f69741/namex-0.1.0-py3-none-any.whl", hash = "sha256:e2012a474502f1e2251267062aae3114611f07df4224b6e06334c57b0f2ce87c", size = 5905, upload-time = "2025-05-26T23:17:37.695Z" }, -] - -[[package]] -name = "narwhals" -version = "1.42.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" } -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" }, -] - -[[package]] -name = "nbclient" -version = "0.10.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "jupyter-client" }, - { name = "jupyter-core" }, - { name = "nbformat" }, - { name = "traitlets" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/87/66/7ffd18d58eae90d5721f9f39212327695b749e23ad44b3881744eaf4d9e8/nbclient-0.10.2.tar.gz", hash = "sha256:90b7fc6b810630db87a6d0c2250b1f0ab4cf4d3c27a299b0cde78a4ed3fd9193", size = 62424, upload-time = "2024-12-19T10:32:27.164Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl", hash = "sha256:4ffee11e788b4a27fabeb7955547e4318a5298f34342a4bfd01f2e1faaeadc3d", size = 25434, upload-time = "2024-12-19T10:32:24.139Z" }, -] - -[[package]] -name = "nbconvert" -version = "7.16.6" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "beautifulsoup4" }, - { name = "bleach", extra = ["css"] }, - { name = "defusedxml" }, - { name = "jinja2" }, - { name = "jupyter-core" }, - { name = "jupyterlab-pygments" }, - { name = "markupsafe" }, - { name = "mistune" }, - { name = "nbclient" }, - { name = "nbformat" }, - { name = "packaging" }, - { name = "pandocfilters" }, - { name = "pygments" }, - { name = "traitlets" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/a3/59/f28e15fc47ffb73af68a8d9b47367a8630d76e97ae85ad18271b9db96fdf/nbconvert-7.16.6.tar.gz", hash = "sha256:576a7e37c6480da7b8465eefa66c17844243816ce1ccc372633c6b71c3c0f582", size = 857715, upload-time = "2025-01-28T09:29:14.724Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl", hash = "sha256:1375a7b67e0c2883678c48e506dc320febb57685e5ee67faa51b18a90f3a712b", size = 258525, upload-time = "2025-01-28T09:29:12.551Z" }, -] - -[[package]] -name = "nbformat" -version = "5.10.4" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "fastjsonschema" }, - { name = "jsonschema" }, - { name = "jupyter-core" }, - { name = "traitlets" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749, upload-time = "2024-04-04T11:20:37.371Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454, upload-time = "2024-04-04T11:20:34.895Z" }, -] - -[[package]] -name = "nbsphinx" -version = "0.9.7" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "docutils" }, - { name = "jinja2" }, - { name = "nbconvert" }, - { name = "nbformat" }, - { 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" } -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" }, -] - -[[package]] -name = "nest-asyncio" -version = "1.6.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload-time = "2024-01-21T14:25:19.227Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, -] - -[[package]] -name = "networkx" -version = "3.4.2" -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'", + { 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" }, +] + +[[package]] +name = "mypy-extensions" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/6e/371856a3fb9d31ca8dac321cda606860fa4548858c0cc45d9d1d4ca2628b/mypy_extensions-1.1.0.tar.gz", hash = "sha256:52e68efc3284861e772bbcd66823fde5ae21fd2fdb51c62a211403730b916558", size = 6343, upload-time = "2025-04-22T14:54:24.164Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl", hash = "sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505", size = 4963, upload-time = "2025-04-22T14:54:22.983Z" }, +] + +[[package]] +name = "namex" +version = "0.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0c/c0/ee95b28f029c73f8d49d8f52edaed02a1d4a9acb8b69355737fdb1faa191/namex-0.1.0.tar.gz", hash = "sha256:117f03ccd302cc48e3f5c58a296838f6b89c83455ab8683a1e85f2a430aa4306", size = 6649, upload-time = "2025-05-26T23:17:38.918Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b2/bc/465daf1de06409cdd4532082806770ee0d8d7df434da79c76564d0f69741/namex-0.1.0-py3-none-any.whl", hash = "sha256:e2012a474502f1e2251267062aae3114611f07df4224b6e06334c57b0f2ce87c", size = 5905, upload-time = "2025-05-26T23:17:37.695Z" }, +] + +[[package]] +name = "narwhals" +version = "1.42.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" } +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" }, +] + +[[package]] +name = "nbclient" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "nbformat" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/87/66/7ffd18d58eae90d5721f9f39212327695b749e23ad44b3881744eaf4d9e8/nbclient-0.10.2.tar.gz", hash = "sha256:90b7fc6b810630db87a6d0c2250b1f0ab4cf4d3c27a299b0cde78a4ed3fd9193", size = 62424, upload-time = "2024-12-19T10:32:27.164Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl", hash = "sha256:4ffee11e788b4a27fabeb7955547e4318a5298f34342a4bfd01f2e1faaeadc3d", size = 25434, upload-time = "2024-12-19T10:32:24.139Z" }, +] + +[[package]] +name = "nbconvert" +version = "7.16.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "bleach", extra = ["css"] }, + { name = "defusedxml" }, + { name = "jinja2" }, + { name = "jupyter-core" }, + { name = "jupyterlab-pygments" }, + { name = "markupsafe" }, + { name = "mistune" }, + { name = "nbclient" }, + { name = "nbformat" }, + { name = "packaging" }, + { name = "pandocfilters" }, + { name = "pygments" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a3/59/f28e15fc47ffb73af68a8d9b47367a8630d76e97ae85ad18271b9db96fdf/nbconvert-7.16.6.tar.gz", hash = "sha256:576a7e37c6480da7b8465eefa66c17844243816ce1ccc372633c6b71c3c0f582", size = 857715, upload-time = "2025-01-28T09:29:14.724Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl", hash = "sha256:1375a7b67e0c2883678c48e506dc320febb57685e5ee67faa51b18a90f3a712b", size = 258525, upload-time = "2025-01-28T09:29:12.551Z" }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema" }, + { name = "jsonschema" }, + { name = "jupyter-core" }, + { name = "traitlets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749, upload-time = "2024-04-04T11:20:37.371Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454, upload-time = "2024-04-04T11:20:34.895Z" }, +] + +[[package]] +name = "nbsphinx" +version = "0.9.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docutils" }, + { name = "jinja2" }, + { name = "nbconvert" }, + { name = "nbformat" }, + { 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" } +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" }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload-time = "2024-01-21T14:25:19.227Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, ] + +[[package]] +name = "networkx" +version = "3.5" +source = { registry = "https://pypi.org/simple" } 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" } 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" }, @@ -7136,11 +4841,6 @@ dependencies = [ ] 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" }, @@ -7164,388 +4864,268 @@ 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 == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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/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" }, @@ -7573,183 +5153,125 @@ 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.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -7790,10 +5312,6 @@ wheels = [ { 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]] @@ -7802,8 +5320,7 @@ 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'", + "python_full_version < '3.12' 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" }, @@ -7817,32 +5334,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" }, @@ -7857,144 +5366,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -8008,8 +5477,7 @@ 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'", + "python_full_version < '3.12' 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" }, @@ -8023,32 +5491,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" }, @@ -8063,144 +5523,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -8216,8 +5636,7 @@ 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'", + "python_full_version < '3.12' 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" }, @@ -8231,32 +5650,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" }, @@ -8271,144 +5682,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -8422,8 +5793,7 @@ 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'", + "python_full_version < '3.12' 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" }, @@ -8437,32 +5807,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" }, @@ -8477,144 +5839,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -8630,8 +5952,7 @@ 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'", + "python_full_version < '3.12' 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')" }, @@ -8647,32 +5968,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'", ] 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')" }, @@ -8689,144 +6002,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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')" }, @@ -8843,8 +6116,7 @@ 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'", + "python_full_version < '3.12' 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" }, @@ -8858,32 +6130,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'", ] 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')" }, @@ -8901,144 +6165,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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')" }, @@ -9066,8 +6290,7 @@ 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'", + "python_full_version < '3.12' 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" }, @@ -9081,32 +6304,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" }, @@ -9121,144 +6336,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -9274,8 +6449,7 @@ 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'", + "python_full_version < '3.12' 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')" }, @@ -9294,32 +6468,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'", ] 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')" }, @@ -9339,144 +6505,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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')" }, @@ -9497,8 +6623,7 @@ 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'", + "python_full_version < '3.12' 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')" }, @@ -9515,32 +6640,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'", ] 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')" }, @@ -9558,144 +6675,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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')" }, @@ -9715,32 +6792,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" }, @@ -9755,144 +6824,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -9912,8 +6941,7 @@ 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'", + "python_full_version < '3.12' 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" }, @@ -9926,32 +6954,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" }, @@ -9964,144 +6984,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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 +7095,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" }, @@ -10155,144 +7127,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -10306,8 +7238,7 @@ 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'", + "python_full_version < '3.12' 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" }, @@ -10321,8 +7252,7 @@ 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'", + "python_full_version < '3.12' 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" }, @@ -10336,32 +7266,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" }, @@ -10376,144 +7298,104 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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,8 +7432,8 @@ name = "opt-einsum-fx" version = "0.1.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "opt-einsum" }, - { name = "packaging" }, + { 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.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 = "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')" }, @@ -10570,16 +7452,6 @@ dependencies = [ ] 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" }, @@ -10620,10 +7492,6 @@ wheels = [ { 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" }, @@ -10656,19 +7524,6 @@ 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" }, @@ -10725,6 +7580,59 @@ 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" }, ] +[[package]] +name = "packmol" +version = "21.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f0/4d/90787910212a3256fa1afe40eb64fd649726c3b2c064bc64188efcb263a0/packmol-21.2.1.tar.gz", hash = "sha256:18b475b5c47d7c4e3e956f27188256595834b9d7e13bd251798f3a13a3779fcd", size = 897293, upload-time = "2026-01-27T11:39:39.059Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/18/e008ea5ee4ea775adb08c04cc9013cb6b33e414fe3eadf511fad00f8b31e/packmol-21.2.1-cp311-cp311-macosx_15_0_arm64.whl", hash = "sha256:6bc2ec9872b204162c5bf6b7a3e066cdf056d45c43ece639a95054b5242f7a02", size = 992710, upload-time = "2026-01-27T11:38:26.981Z" }, + { url = "https://files.pythonhosted.org/packages/b7/1f/cac9ff28fbd091e6750b10a0373918f2f0687cd6e9484088828366c38e65/packmol-21.2.1-cp311-cp311-macosx_15_0_x86_64.whl", hash = "sha256:c75a36ea903f1b49cc43a21d2b9fb463111a0d39c030b4639c95cec77f4f77fd", size = 1684046, upload-time = "2026-01-27T11:38:28.49Z" }, + { url = "https://files.pythonhosted.org/packages/0a/da/75651a609d52d5302049feb779f5af214a8419ac6c5177e0704ec6b546c3/packmol-21.2.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2bb1269183ff8cbd5decc0836955f7bf60faf7fb89807d95df202d335daa3664", size = 651837, upload-time = "2026-01-27T11:38:29.884Z" }, + { url = "https://files.pythonhosted.org/packages/98/13/1e2fd060e4478cf37aee1c424eb344258b57ba0db1c6a52b4335e0f3d26d/packmol-21.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:59871bc5d245b495befc839b85ea36d0fcd7fc4fa65a65a3d4737af751be127b", size = 1220659, upload-time = "2026-01-27T11:38:31.847Z" }, + { url = "https://files.pythonhosted.org/packages/86/58/e62788f3b8e221007c44e908b6cd8d18379bb21cad3c87c70a63b2c2f059/packmol-21.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a06acfa33df98425f5ab941cac3130558cd30de069b63816e60f65d1d725f4c4", size = 802294, upload-time = "2026-01-27T11:38:33.502Z" }, + { url = "https://files.pythonhosted.org/packages/a2/af/256fffdcddcfc4f06ef222c3d2a67d33670adbfc2fa72ef54c59a88a454b/packmol-21.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:81a17c7d15356240aec2db61057ac0998ec36137ca6cd2e551dc24f2dc0f0be7", size = 1627266, upload-time = "2026-01-27T11:38:35.206Z" }, + { url = "https://files.pythonhosted.org/packages/2e/26/7f0f54376d2b4746cbbaa27bebc5c82064be79d5ffc2d992ff735d6f6b67/packmol-21.2.1-cp311-cp311-win32.whl", hash = "sha256:7fac24e0bb3537d0d2d36efa16200051927794f5faa6171a839e0800680cd61d", size = 220079, upload-time = "2026-01-27T11:38:36.683Z" }, + { url = "https://files.pythonhosted.org/packages/e3/83/4e600ffe7f647ea9dbebf465ace4bbcd39e71f574e0eae84ace40452d64c/packmol-21.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:7021cf2f465208ca00bab4623abded3a2c80edec898eb7aae3b82b0fd12279b2", size = 220083, upload-time = "2026-01-27T11:38:37.974Z" }, + { url = "https://files.pythonhosted.org/packages/e8/4d/e0eee4dac3af4f9a295f40c1a2db4779e40f264aa4e6d2cc8f32fa3ca7c3/packmol-21.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:96c688f6791c82a7b2f24f79e0bcf686ecd0da092480432589e310058f1ae23e", size = 211725, upload-time = "2026-01-27T11:38:39.229Z" }, + { url = "https://files.pythonhosted.org/packages/bd/68/41e4a6492b3ce8c1f7e784613fae7b71729854bc7cc7b099bc56db6de741/packmol-21.2.1-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:5fcabfeea29799b840f44322aee61b7e0913d8d7a2829ace1eadb386c6160b87", size = 992709, upload-time = "2026-01-27T11:38:40.655Z" }, + { url = "https://files.pythonhosted.org/packages/2a/a6/50f886867f92207ac0d5facdb5d1aac93b02c867c3242b03ad7d815ccc4f/packmol-21.2.1-cp312-cp312-macosx_15_0_x86_64.whl", hash = "sha256:547f5842b4a6cff27262be0356c7251e49b050543160dffab288dc2412fa89c7", size = 1684046, upload-time = "2026-01-27T11:38:42.11Z" }, + { url = "https://files.pythonhosted.org/packages/24/fb/9b2c362f738f1cef8cd7a7aa56d842dff6025929e394243b2aec520e9439/packmol-21.2.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:410843ed102e17b07eeb046a1762f59d9fc0e6a654a1f35580595b13064fd03b", size = 651838, upload-time = "2026-01-27T11:38:43.839Z" }, + { url = "https://files.pythonhosted.org/packages/49/8f/b9659262ea29f02f1371bec0fa9a1ee357116da294ac870ce8075b0c1f85/packmol-21.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:331a9939bf235281a633ff164ea45fe9c3b3894e17b2c03cb99ecc0d31d074c6", size = 1220659, upload-time = "2026-01-27T11:38:45.476Z" }, + { url = "https://files.pythonhosted.org/packages/e7/dd/76610620c0576ac03a391c74e7ff72e1fd91fe31fd772fe9ef5b831ad8ee/packmol-21.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3f2b40cdbe2a274ed9a757518832c3950fedfdea6bfbb0ee5f4213f770643a8b", size = 802293, upload-time = "2026-01-27T11:38:47.231Z" }, + { url = "https://files.pythonhosted.org/packages/e3/ef/0b34a826c04707176a9740b58d91afb1001b68029460289244a4a4204177/packmol-21.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:afe596fa108a6e4e662f5f3aeddf4d933fdfefcdd7537b735697c5308aae6b55", size = 1627266, upload-time = "2026-01-27T11:38:48.942Z" }, + { url = "https://files.pythonhosted.org/packages/92/b0/d5e692bfb606df81f4a1c54c4c2ab9b6c885ea3ab4289d81bee12761b0f8/packmol-21.2.1-cp312-cp312-win32.whl", hash = "sha256:868cca526e1bde1ed1e63ecbbe95070e78df59b7bf37f3671bd228b1340e51d8", size = 220077, upload-time = "2026-01-27T11:38:50.416Z" }, + { url = "https://files.pythonhosted.org/packages/16/ea/305abe63770cc1be99f89740d0f142890d05e67c327d70e770856cf61d4f/packmol-21.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:c652a7f60abe62181e2a019c582f0a614f622b5aa78bab585ff1c6e1c6eacca0", size = 220084, upload-time = "2026-01-27T11:38:52.523Z" }, + { url = "https://files.pythonhosted.org/packages/7e/19/c7dab2f0597d428b91adeb7964e1d6e8a80af635ef321fe354ba9422205a/packmol-21.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:cb5b3375b98dee1fcaab1c3f68ed38057bb7c378f0f0bf9b7f2a3e0ad8efb453", size = 211724, upload-time = "2026-01-27T11:38:54.085Z" }, + { url = "https://files.pythonhosted.org/packages/bb/df/b8698b9f863a81c99b008e6a7655b761a686656660e248f3bee8f0c47286/packmol-21.2.1-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:5b97dfa876b8f99fb5db1409edd041681b58855b960d46be021aa46c1b57ad03", size = 992709, upload-time = "2026-01-27T11:38:55.551Z" }, + { url = "https://files.pythonhosted.org/packages/14/24/cc93a59dfbb9a5a467f81c881d20492307de837ebb5c34a71dcd7d3efc4a/packmol-21.2.1-cp313-cp313-macosx_15_0_x86_64.whl", hash = "sha256:a97985a41961c8331283b0a4d24f1e2d3226c3f4dd958d153e6c6bb4ea141845", size = 1684047, upload-time = "2026-01-27T11:38:57.005Z" }, + { url = "https://files.pythonhosted.org/packages/a0/80/714c85cc2d875aa540ae650cd28626ec518532423820e97c74fc8ab28998/packmol-21.2.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:240141292077e0dc92f9e28d5146b699b71925d439bab389d64258733ec82454", size = 651839, upload-time = "2026-01-27T11:38:58.943Z" }, + { url = "https://files.pythonhosted.org/packages/5e/3c/74d96bacddae1c577d7c73ac804b7deb2402402c9c4289e2d64963b92057/packmol-21.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:10e824bffed82af1fcf93891db07f9893e6249ffb24b7b4ea622aa33d6a510d2", size = 1220659, upload-time = "2026-01-27T11:39:00.878Z" }, + { url = "https://files.pythonhosted.org/packages/de/d9/a2c97c3c1b1bb05b43b91aae52d3503053ceb66e9908ca1e972ab4a7cede/packmol-21.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:53611d0f2e217028eb096ea8f442a876d5f7998e09b5d2aa834845cddadde1fa", size = 802292, upload-time = "2026-01-27T11:39:02.282Z" }, + { url = "https://files.pythonhosted.org/packages/fe/1d/04339fb903e4283c8fbbd138f91d0a7161be0f7f7d3c7646b267d25f9a0c/packmol-21.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:70359da9834db60e2818369c9b003bdc7d33c10be2c35941788895a948658bfb", size = 1627265, upload-time = "2026-01-27T11:39:04.066Z" }, + { url = "https://files.pythonhosted.org/packages/f6/36/5dd5daa682f0842c976c53f256ad9b03e27e4d4e2d2112acb9ef25169ffe/packmol-21.2.1-cp313-cp313-win32.whl", hash = "sha256:90d327314fea4ba4f54c01a669243969b989c2cdc5707187cec3023fe54ef87f", size = 220078, upload-time = "2026-01-27T11:39:05.506Z" }, + { url = "https://files.pythonhosted.org/packages/33/8c/902115ba3939deff1c135bd36c17d76df7306d5efa7551c88af70861a017/packmol-21.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:7e21bbe82e1b871ed3cc963759597d6d7d15e2ba5bc4bc154cec4276d97fb7c5", size = 220085, upload-time = "2026-01-27T11:39:06.788Z" }, + { url = "https://files.pythonhosted.org/packages/ec/a1/ec83a25f102bedc85e0ce63f1a9bfdbf37358da72e7cebca4e29524f2e37/packmol-21.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:78e51c0f82dfe5e9fdaea5bfd4064a5f8a97a7b92b6f0a1609d080f412f25f57", size = 211724, upload-time = "2026-01-27T11:39:08.052Z" }, + { url = "https://files.pythonhosted.org/packages/f8/eb/e1370e254fa44026131ac27d4d6aaae1d5be0ca19dc31f615b7b625dcdbb/packmol-21.2.1-cp314-cp314-macosx_15_0_arm64.whl", hash = "sha256:7a8b0c743958ca52ae855b487cb872852b66a68d90ea4a69291ca1e4052dde0a", size = 992712, upload-time = "2026-01-27T11:39:09.586Z" }, + { url = "https://files.pythonhosted.org/packages/b9/74/eaba6430918fa5cb797fa6ca0343b1dfbcd088fdd28bcbe42666843ca29d/packmol-21.2.1-cp314-cp314-macosx_15_0_x86_64.whl", hash = "sha256:d854ffe5219fb8774f0cf8e38f824117455327d006d73942f2880909a25be1fd", size = 1684049, upload-time = "2026-01-27T11:39:11.501Z" }, + { url = "https://files.pythonhosted.org/packages/59/aa/81bdd62cfa2df58927a54f823eadecdb716d3a82371541f02b48fa1a7f57/packmol-21.2.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b71e983d350f1e1fc020320b698e11b49c560b8a56093794d66105e2876ae866", size = 651837, upload-time = "2026-01-27T11:39:12.856Z" }, + { url = "https://files.pythonhosted.org/packages/9d/3f/0b324513cdd58ccba7361845995e55609e4af70347feaf5a5fdbc2851373/packmol-21.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:546810c8b92c780ce6289dbd806e428ceb294d0c285c74a9a8f5c6548eae8bbc", size = 1220659, upload-time = "2026-01-27T11:39:14.549Z" }, + { url = "https://files.pythonhosted.org/packages/bd/02/80692823dcf45f3c841a7ebc9fda8ef56663484207b1085b94609dd98b0f/packmol-21.2.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:389f0adfe32931caa8778aeaf982417338d1fc5a6ebb7be44c07c5bd538daa99", size = 802295, upload-time = "2026-01-27T11:39:15.964Z" }, + { url = "https://files.pythonhosted.org/packages/01/f5/1cff8c1d5f272580972f72a23dbf423f267d9c96dd4b1dcaa4cf28181d0d/packmol-21.2.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:14e6c52ac3de1e18d45971a72186616036ee6e402b208241fec50ba2b30247dd", size = 1627268, upload-time = "2026-01-27T11:39:17.685Z" }, + { url = "https://files.pythonhosted.org/packages/45/c0/1db24250c63d5c3eaa2df1564516f1f6a5b6ef5424da6bf562dec2c59cba/packmol-21.2.1-cp314-cp314-win32.whl", hash = "sha256:385c8111ea681100c2c415e48565a418da7678b82b5cc46abc71bacce356e77a", size = 225931, upload-time = "2026-01-27T11:39:19.296Z" }, + { url = "https://files.pythonhosted.org/packages/09/01/d9d4f22d259e545feb53b02ff2d09a93fcb228bb07bbfae572696fb0a5ca/packmol-21.2.1-cp314-cp314-win_amd64.whl", hash = "sha256:ac1d678c6b269a2a6bf0d13a9498e02b1e409ac4dcf573b1778a8700b124c3fa", size = 225938, upload-time = "2026-01-27T11:39:20.839Z" }, + { url = "https://files.pythonhosted.org/packages/1d/44/f76857dc0047a286bc002304671a733c102c375ecfee5ac843312bd59a2c/packmol-21.2.1-cp314-cp314-win_arm64.whl", hash = "sha256:3442f34c39c2a6fb4800c659f321115ade86ccaaa3327b8b5003f1b59adbdd88", size = 216917, upload-time = "2026-01-27T11:39:22.104Z" }, + { url = "https://files.pythonhosted.org/packages/b5/97/c8fcfb538e117eca1276391aa64d5f4ab4645f2630f9b76c27ce1df3068c/packmol-21.2.1-cp314-cp314t-macosx_15_0_arm64.whl", hash = "sha256:57c131720109881f91f1b8321e7681e52e0ac14761f1608ceee2b816b8d8036e", size = 992710, upload-time = "2026-01-27T11:39:23.897Z" }, + { url = "https://files.pythonhosted.org/packages/4c/75/c8bd46d19604df06f3da0ee95d4068db797913db841de4c776ea4ec9d869/packmol-21.2.1-cp314-cp314t-macosx_15_0_x86_64.whl", hash = "sha256:4f3865d7f4c1904220ac4b47d890fa14df41a75aa9667a71759ea37af9905a68", size = 1684045, upload-time = "2026-01-27T11:39:26.324Z" }, + { url = "https://files.pythonhosted.org/packages/a1/7d/bd598d89f461a59ee63766309765fefe5b17d881b583e63be8730fe3c374/packmol-21.2.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2e58651146160616a2776970d678818dbf0ff6fb5f764b19419b59618013a0f6", size = 651841, upload-time = "2026-01-27T11:39:27.931Z" }, + { url = "https://files.pythonhosted.org/packages/9f/9b/e3ffb244e0ef6de1d3c9b786b3a4d0579ba881637c334e5c5870b40f0702/packmol-21.2.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c959b5a7e74c78d6d9bd18b2e004b5b5bf9d9dc4ee6f8d1008d675be01b9899a", size = 1220663, upload-time = "2026-01-27T11:39:29.299Z" }, + { url = "https://files.pythonhosted.org/packages/bd/7c/f212553419191b1a47e179c6e4ffb7567893d4da8b7f4b54bf4e6aa98206/packmol-21.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:551f76dd4954c5c14a22d36959b96ac0eb399c181b9dcebacfa2a8367b0972af", size = 802300, upload-time = "2026-01-27T11:39:31.187Z" }, + { url = "https://files.pythonhosted.org/packages/e1/13/ec7f01feaa20fe8ec46d52e8d793458407f0d18c7e83c34606223402b0a2/packmol-21.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:087c9c8e9e01d502f5f9394f471e04665126c777f6ee6b747265ac78deb412ce", size = 1627269, upload-time = "2026-01-27T11:39:32.709Z" }, + { url = "https://files.pythonhosted.org/packages/c8/78/c2ed2f73179627f06c3a77ee15e3465a1f9bfe7c50aa4b4881561a726b67/packmol-21.2.1-cp314-cp314t-win32.whl", hash = "sha256:fb7805e25ca4865144a7d277d9af7daeb8ac21de75090e845034e2c16c9b2973", size = 225935, upload-time = "2026-01-27T11:39:34.238Z" }, + { url = "https://files.pythonhosted.org/packages/a9/a1/27206ac0bd030a939752c75d167651458ecb3cdec22169cb1bd1deda222e/packmol-21.2.1-cp314-cp314t-win_amd64.whl", hash = "sha256:ab666d63ed14e659387c1de161923a77f09a372a15f5815b0eca7c4c26efae18", size = 225940, upload-time = "2026-01-27T11:39:35.474Z" }, + { url = "https://files.pythonhosted.org/packages/fa/5d/3134e1bcad1d98b485b56a93efdcedc2a2fa4adca6cf0f941352e2e1da25/packmol-21.2.1-cp314-cp314t-win_arm64.whl", hash = "sha256:9da3a6f40b60343302ca251f148532892532e00678221b2ac258356f59883db9", size = 216914, upload-time = "2026-01-27T11:39:36.921Z" }, +] + [[package]] name = "palettable" version = "3.3.3" @@ -10747,13 +7655,6 @@ dependencies = [ ] 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" }, @@ -10864,11 +7765,6 @@ dependencies = [ ] 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" }, @@ -10892,17 +7788,6 @@ 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" }, @@ -10947,13 +7832,6 @@ wheels = [ { 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" }, @@ -11009,6 +7887,20 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, ] +[[package]] +name = "pooch" +version = "1.8.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "platformdirs" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/77/b3d3e00c696c16cf99af81ef7b1f5fe73bd2a307abca41bd7605429fe6e5/pooch-1.8.2.tar.gz", hash = "sha256:76561f0de68a01da4df6af38e9955c4c9d1a5c90da73f7e40276a5728ec83d10", size = 59353, upload-time = "2024-06-06T16:53:46.224Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl", hash = "sha256:3529a57096f7198778a5ceefd5ac3ef0e4d06a6ddaf9fc2d609b806f25302c47", size = 64574, upload-time = "2024-06-06T16:53:44.343Z" }, +] + [[package]] name = "pre-commit" version = "4.2.0" @@ -11055,22 +7947,6 @@ version = "0.3.2" 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" }, @@ -11185,18 +8061,6 @@ 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" }, @@ -11333,19 +8197,6 @@ dependencies = [ ] 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" }, @@ -11391,15 +8242,6 @@ wheels = [ { 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" }, @@ -11458,13 +8300,6 @@ dependencies = [ ] 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" }, @@ -11486,8 +8321,6 @@ wheels = [ { 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" }, ] @@ -11544,8 +8377,7 @@ dependencies = [ { 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 = "networkx" }, { 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 = "palettable" }, @@ -11564,10 +8396,6 @@ dependencies = [ ] 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" } 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" }, @@ -11587,15 +8415,6 @@ dependencies = [ ] 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" }, @@ -11691,12 +8510,10 @@ version = "8.4.0" 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" } wheels = [ @@ -11802,14 +8619,30 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225, upload-time = "2025-03-25T02:24:58.468Z" }, ] +[[package]] +name = "pyvista" +version = "0.46.5" +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 = "pillow" }, + { name = "pooch" }, + { name = "scooby" }, + { name = "typing-extensions" }, + { name = "vtk" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1b/bd/a4e4131b2d4b908a060b43f8346ce863d76a6fecf8a1c2c845602e96c610/pyvista-0.46.5.tar.gz", hash = "sha256:b637bfa32136b95e5e5a6d972871606a68e3c625fc652ff5d9f00390294e99c0", size = 2397682, upload-time = "2026-01-15T00:29:12.727Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/df/39a108f198dd2240f2c9dad06c7c81d44809aeb83f3eb2c9d5a1ae9e4311/pyvista-0.46.5-py3-none-any.whl", hash = "sha256:d254e1e32e1df0dc04b409f989bd56b24d9e94086d868597af6c501151ec17fa", size = 2448206, upload-time = "2026-01-15T00:29:10.035Z" }, +] + [[package]] name = "pywin32" version = "310" 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" }, @@ -11827,15 +8660,6 @@ 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" }, @@ -11870,21 +8694,10 @@ 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')" }, + { 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/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" }, @@ -11926,11 +8739,6 @@ wheels = [ { 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" }, @@ -11948,11 +8756,6 @@ dependencies = [ { 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" }, @@ -11972,15 +8775,17 @@ wheels = [ [[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]] @@ -12002,7 +8807,7 @@ 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" } wheels = [ @@ -12068,245 +8873,184 @@ resolution-markers = [ "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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 = [ @@ -12319,310 +9063,209 @@ version = "14.0.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 == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" } wheels = [ @@ -12635,19 +9278,6 @@ version = "0.25.1" 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" }, @@ -12703,18 +9333,6 @@ wheels = [ { 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" }, @@ -12745,7 +9363,7 @@ name = "ruamel-yaml" version = "0.18.14" 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" } wheels = [ @@ -12758,15 +9376,6 @@ 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" }, @@ -12860,11 +9469,6 @@ dependencies = [ ] 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" }, @@ -12896,15 +9500,6 @@ dependencies = [ ] 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" }, @@ -12964,6 +9559,30 @@ 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" }, ] +[[package]] +name = "scooby" +version = "0.11.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d1/d1/a28f3be1503a9c474a4878424bbeb93a55a2ec7d0cb66559aa258e690aea/scooby-0.11.0.tar.gz", hash = "sha256:3dfacc6becf2d6558efa4b625bae3b844ced5d256f3143ebf774e005367e712a", size = 22102, upload-time = "2025-11-01T19:22:53.894Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/bb/bbae36d06c0fd670e8373da67096cd57058b57c9bad7d92969b5e3b730af/scooby-0.11.0-py3-none-any.whl", hash = "sha256:a79663d1a7711eb104e4b2935988ea1ed5f7be6b7288fad23b4fba7462832f9d", size = 19877, upload-time = "2025-11-01T19:22:53.046Z" }, +] + +[[package]] +name = "seaborn" +version = "0.13.2" +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 = "pandas" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/86/59/a451d7420a77ab0b98f7affa3a1d78a313d2f7281a57afb1a34bae8ab412/seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7", size = 1457696, upload-time = "2024-01-25T13:21:52.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987", size = 294914, upload-time = "2024-01-25T13:21:49.598Z" }, +] + [[package]] name = "seekpath" version = "2.1.0" @@ -13006,8 +9625,8 @@ name = "sentry-sdk" version = "2.29.1" 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 = [ @@ -13020,18 +9639,6 @@ 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" }, @@ -13080,10 +9687,6 @@ wheels = [ { 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" }, ] [[package]] @@ -13165,19 +9768,6 @@ 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" }, @@ -13275,15 +9865,10 @@ 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 = "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" }, @@ -13322,7 +9907,6 @@ 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" } wheels = [ @@ -13511,14 +10095,6 @@ dependencies = [ ] 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" }, @@ -13639,84 +10215,60 @@ resolution-markers = [ "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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')" }, @@ -13732,461 +10284,325 @@ 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 == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-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 != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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'" }, @@ -14210,16 +10626,16 @@ name = "tensorboard" version = "2.16.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "absl-py" }, - { name = "grpcio" }, - { name = "markdown" }, + { name = "absl-py", 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')" }, + { name = "grpcio", 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')" }, + { name = "markdown", 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')" }, { 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" }, + { name = "protobuf", 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')" }, + { name = "setuptools", 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')" }, + { name = "six", 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')" }, + { name = "tensorboard-data-server", 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')" }, + { name = "werkzeug", 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')" }, ] 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" }, @@ -14264,11 +10680,6 @@ dependencies = [ { name = "wrapt" }, ] 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" }, @@ -14286,10 +10697,6 @@ 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" }, @@ -14417,24 +10824,19 @@ 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 == '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 == '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 == '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'", + "python_full_version < '3.12' 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 = "networkx", 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 = "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')" }, @@ -14451,11 +10853,6 @@ dependencies = [ { 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" }, @@ -14479,91 +10876,66 @@ resolution-markers = [ "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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 +10955,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" }, @@ -14612,343 +10980,246 @@ resolution-markers = [ "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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-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 = "networkx", 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 = "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')" }, @@ -14969,10 +11240,6 @@ dependencies = [ { 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" }, @@ -15009,15 +11276,15 @@ name = "torch-geometric" version = "2.6.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "aiohttp" }, - { name = "fsspec" }, - { name = "jinja2" }, + { name = "aiohttp", marker = "extra == 'extra-5-mlipx-mattersim' 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-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-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "fsspec", marker = "extra == 'extra-5-mlipx-mattersim' 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-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-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "jinja2", marker = "extra == 'extra-5-mlipx-mattersim' 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-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-orb' and extra == 'extra-5-mlipx-sevenn') or (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-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 = "psutil", marker = "extra == 'extra-5-mlipx-mattersim' 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-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-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "pyparsing", marker = "extra == 'extra-5-mlipx-mattersim' 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-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-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "requests", marker = "extra == 'extra-5-mlipx-mattersim' 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-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-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "tqdm", marker = "extra == 'extra-5-mlipx-mattersim' 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-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-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' 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" } wheels = [ @@ -15039,27 +11306,18 @@ 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 == '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 == '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 == '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'", + "python_full_version < '3.12' 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.2.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-matpes'" }, ] 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" }, @@ -15083,177 +11341,125 @@ resolution-markers = [ "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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" }, @@ -15282,10 +11488,6 @@ dependencies = [ { 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" }, @@ -15298,10 +11500,10 @@ name = "torchmetrics" version = "1.7.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "lightning-utilities" }, + { 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 = "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 = "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.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')" }, ] @@ -15338,30 +11540,21 @@ version = "0.17.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 == '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 == '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 == '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'", + "python_full_version < '3.12' 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')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-matpes'" }, + { name = "pillow", marker = "extra == 'extra-5-mlipx-matpes'" }, + { name = "requests", marker = "extra == 'extra-5-mlipx-matpes'" }, + { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-matpes'" }, ] 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" }, @@ -15385,168 +11578,120 @@ resolution-markers = [ "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-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.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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 = "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')" }, @@ -15554,10 +11699,6 @@ 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/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" }, @@ -15600,7 +11741,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 = [ @@ -15622,14 +11763,12 @@ 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'", + "python_full_version < '3.12' 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" }, ] @@ -15641,35 +11780,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" }, @@ -15682,150 +11812,109 @@ 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'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' 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')" }, ] 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" }, @@ -15906,16 +11995,6 @@ 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" }, @@ -15946,12 +12025,6 @@ wheels = [ { 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" }, ] [[package]] @@ -16030,23 +12103,48 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/db/a8/8f9cc6749331186e6a513bfe3745454f81d25f6e34c6024f88f80c71ed28/voluptuous-0.15.2-py3-none-any.whl", hash = "sha256:016348bc7788a9af9520b1764ebd4de0df41fe2138ebe9e06fa036bf86a65566", size = 31349, upload-time = "2024-07-02T19:09:58.125Z" }, ] +[[package]] +name = "vtk" +version = "9.5.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/8e/c8a4dee522ad0436c846f0f62444a2699cc0d72b2554aa09bcfcf2c01f29/vtk-9.5.2-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:afcbc6dc122ebba877793940fda8fd2cbe14e1dae590e6872ea74894abdab9be", size = 86865360, upload-time = "2025-09-18T00:56:33.18Z" }, + { url = "https://files.pythonhosted.org/packages/39/d5/ec52c2cea957221d5e41ebe1768c78d79c714f1e0e635cc4a545cab69d31/vtk-9.5.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:005877a568b96cf00ceb5bec268cf102db756bed509cb240fa40ada414a24bf0", size = 80550040, upload-time = "2025-09-18T00:56:37.337Z" }, + { url = "https://files.pythonhosted.org/packages/b9/00/73a2e3548eae8c122569ae40e947166620cf192ec9a46c6be94e04597dc3/vtk-9.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2e2fe2535483adb1ba8cc83a0dc296faaffa2505808a3b04f697084f656e5f84", size = 112239648, upload-time = "2025-09-18T00:56:42.591Z" }, + { url = "https://files.pythonhosted.org/packages/4e/fb/9a88a43be9deccdfb04228a059aa6e7e0416b96223436cf040bc627b5a1d/vtk-9.5.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:0248aab2ee51a69fadcdcf74697a045e2d525009a35296100eed2211f0cca2bb", size = 103718432, upload-time = "2025-09-18T00:56:49.733Z" }, + { url = "https://files.pythonhosted.org/packages/3a/f0/2f499af38d5b30f0ee80f644ef16be3be739f475d19fbdf518ab622dfb88/vtk-9.5.2-cp311-cp311-win_amd64.whl", hash = "sha256:f78674fd265022499ea6b7f03d7f11a861e89e1df043592a82e4f5235c537ef5", size = 63914667, upload-time = "2025-09-18T00:56:53.795Z" }, + { url = "https://files.pythonhosted.org/packages/23/43/58f4d2d127fc8e8aa26e4793cf80e901b395de44fb6ac69acd7c7b8856ce/vtk-9.5.2-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:cf5dbc93b6806b08799204430a4fc4bea74290c1c101fa64f1a4703144087fa3", size = 87057834, upload-time = "2025-09-18T00:56:57.737Z" }, + { url = "https://files.pythonhosted.org/packages/e5/1a/a5d5ef2a5a55512158cad83524bab7a4a451f917aee342f117144d53c6eb/vtk-9.5.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cce212b911d13fb0ca36d339f658c9db1ff27a5a730cdddd5d0c6b2ec24c15b1", size = 80607226, upload-time = "2025-09-18T00:57:01.782Z" }, + { url = "https://files.pythonhosted.org/packages/c5/6c/e5544c77b568bfbcc3592fb5e23a5dee8e84df9ee316230509362fb6d432/vtk-9.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:454711c51038824ddc75f955e1064c4e214b452c2e67083f01a8b43fc0ed62cb", size = 112292112, upload-time = "2025-09-18T00:57:07.554Z" }, + { url = "https://files.pythonhosted.org/packages/e4/44/55f7832950cde2d3e5e70d3640e26f3f6c97640769ed5079b4db91189e38/vtk-9.5.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9fce9688f0dede00dc6f3b046037c5fa8378479fa8303a353fd69afae4078d9a", size = 103797602, upload-time = "2025-09-18T00:57:17.783Z" }, + { url = "https://files.pythonhosted.org/packages/78/c2/a292e122cb038c1c2bbc44f3e0588f2ece2bcd44b889631a5c8d82a5f8bd/vtk-9.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:5357bccdf8629373195cab871e45c50383d052d316192aa48f45bd9f87bafccb", size = 64002205, upload-time = "2025-09-18T00:57:23.5Z" }, + { url = "https://files.pythonhosted.org/packages/b8/e0/c1d4baa2d9c32fbf7d36bfa49347168b24136232b6536de433e094482e55/vtk-9.5.2-cp313-cp313-macosx_10_10_x86_64.whl", hash = "sha256:1eae5016620a5fd78f4918256ea65dbe100a7c3ce68f763b64523f06aaaeafbc", size = 87078130, upload-time = "2025-09-18T00:57:31.183Z" }, + { url = "https://files.pythonhosted.org/packages/95/e9/02af96275fd3c4cdf0d55964427c5f70c4a2106c1b6c357726d62e3e6da0/vtk-9.5.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:29ad766e308dcaa23b36261180cd9960215f48815b31c7ac2aa52edc88e21ef7", size = 80618932, upload-time = "2025-09-18T00:57:38.197Z" }, + { url = "https://files.pythonhosted.org/packages/20/d1/c8c4c9b4ff2044fadf4f0d0230a933cc1962e7ba8bca6013737e5773c5c2/vtk-9.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:11cf870c05539e9f82f4a5adf450384e0be4ee6cc80274f9502715a4139e2777", size = 112292475, upload-time = "2025-09-18T00:57:46.196Z" }, + { url = "https://files.pythonhosted.org/packages/87/6d/b0d404822329d3b7eeccd66cf61480cbb66bf1bf6bd2ef8eabedcec8428f/vtk-9.5.2-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:3c4b658d61815cb87177f4e94281396c9be5a28798464a2c6fa0897b1bba282f", size = 103798352, upload-time = "2025-09-18T00:57:52.993Z" }, + { url = "https://files.pythonhosted.org/packages/07/8f/400d4e4270bd5da3a19ce465aa288c03435e1f38b0344ac2540615ec5b0b/vtk-9.5.2-cp313-cp313-win_amd64.whl", hash = "sha256:974783b8865e2ddc2818d3090705b6bc6bf8ae40346d67f9a43485fabcfb3a99", size = 64000682, upload-time = "2025-09-18T00:57:57.926Z" }, +] + [[package]] name = "wandb" version = "0.20.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", 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 = "psutil", 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 = "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 = "setproctitle", 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" } wheels = [ @@ -16143,17 +12241,6 @@ 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" }, @@ -16224,23 +12311,6 @@ dependencies = [ ] 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" }, @@ -16334,8 +12404,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" }, @@ -16367,8 +12436,7 @@ name = "znflow" version = "0.2.5" 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" } wheels = [ @@ -16417,7 +12485,7 @@ wheels = [ [[package]] name = "zntrack" -version = "0.8.7" +version = "0.8.10" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "dvc" }, @@ -16429,7 +12497,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/0f/ac/6c34688d0b948a911e0c29e3b67dd9adf763f26d34b43b85325ac38bba80/zntrack-0.8.10.tar.gz", hash = "sha256:3b03fc0177657f0e5687325482ae22b2090561d7f890040c58885910a1ab59f3", size = 470408, upload-time = "2025-12-04T18:48:09.646Z" } 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/29/d6/41508cf387988916688f1bb852caf18c45666961a32a021280a2de848f9e/zntrack-0.8.10-py3-none-any.whl", hash = "sha256:6e26d3cc492d4b9fe0af7a984430720d302205b9b9e8f577f69650884c85c32f", size = 69928, upload-time = "2025-12-04T18:48:10.946Z" }, ]